home *** CD-ROM | disk | FTP | other *** search
- // RanGen:
- // Random number generator object.
- // Incorporates methods for different random distributions.
- #import <objc/Object.h>
-
- @interface RanGen:Object
- {
- }
-
- // detailed method descriptions at end of .h and in .m
-
- // factory:
- + new;
-
- // multi-purpose:
- - (double) ran01;
-
- // special-purpose methods based on ran01:
- - (int) lowInt: (int) lowestNumber highInt: (int) highestNumber;
-
- @end
-